documentation updates

Andrew Cantino 8 years ago
parent
commit
56ec039173
2 changed files with 15 additions and 1 deletions
  1. 12 0
      CHANGES.md
  2. 3 1
      app/models/agents/twitter_search_agent.rb

+ 12 - 0
CHANGES.md

@@ -1,5 +1,17 @@
1 1
 # Changes
2 2
 
3
+* Oct 17, 2015   - TwitterSearchAgent added for running period Twitter searches.
4
+* Oct 17, 2015   - GapDetectorAgent added to alert when no data has been seen in a certain period of time.
5
+* Oct 12, 2015   - Slack agent supports attachments.
6
+* Oct 9, 2015    - The TriggerAgent can be asked to match on fewer then all match groups.
7
+* Oct 4, 2015    - Add DelayAgent for buffering incoming Events
8
+* Oct 3, 2015    - Add SSL verification options to smtp.yml
9
+* Oct 3, 2015    - Better handling of 'Back' links in the UI.
10
+* Sep 22, 2015   - Comprehensive EvernoteAgent added
11
+* Sep 13, 2015   - JavaScriptAgent can access and set Credentials.
12
+* Sep 9, 2015    - Add AgentRunner and LongRunnable to support long running agents.
13
+* Sep 8, 2015    - Allow `url_from_event` in the WebsiteAgent to be an Array
14
+* Sep 7, 2015    - Enable `strict: false` in database.yml
3 15
 * Sep 2, 2015    - WebRequestConcern Agents automatically decode gzip/inflate encodings.
4 16
 * Sep 1, 2015    - WebhookAgent can configure allowed verbs (GET, POST, PUT, ...) for incoming requests.
5 17
 * Aug 21, 2015   - PostAgent supports "xml" as `content_type`.

+ 3 - 1
app/models/agents/twitter_search_agent.rb

@@ -5,10 +5,12 @@ module Agents
5 5
     cannot_receive_events!
6 6
 
7 7
     description <<-MD
8
-      The Twitter Search Agent emits the results of a specified search.
8
+      The Twitter Search Agent performs and emits the results of a specified Twitter search.
9 9
 
10 10
       #{twitter_dependencies_missing if dependencies_missing?}
11 11
 
12
+      If you want realtime data from Twitter about frequent terms, you should definitely use the Twitter Stream Agent instead.
13
+
12 14
       To be able to use this Agent you need to authenticate with Twitter in the [Services](/services) section first.
13 15
 
14 16
       You must provide the desired `search`.